home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / tos / updates / update21.zoo / curses / diffs
Encoding:
Text File  |  1992-06-03  |  3.2 KB  |  177 lines

  1. *** 1.11    1992/04/19 16:42:24
  2. --- Changelo    1992/06/03 15:52:03
  3. ***************
  4. *** 141,143 ****
  5. --- 141,156 ----
  6.           GEMDOS level).
  7.   
  8.   -------------------------- Patchlevel  12 ---------------------------------
  9. + curses.h:: ++jrb
  10. +     #define _putchar _fputchar (defined in putchar.c) instead of
  11. +         the old fputc() which was wrong
  12. + curses.h:: ++jrb
  13. +     undo the above change.
  14. + xconsole.c:: scott
  15. +     We were doning a dev=LOOKUP(handle) in console_write_byte, than again 
  16. +     in flush_key_buff()
  17. + -------------------------- Patchlevel  13 ---------------------------------
  18. *** 1.10    1992/04/19 16:42:24
  19. --- PatchLev.h    1992/06/03 15:52:04
  20. ***************
  21. *** 1,5 ****
  22.   /*
  23. !  *    PathLevel: 12
  24.    *
  25.    *    the Patch Level above is to identify the version
  26.    *    of the all the files in this directory. given the above
  27. --- 1,5 ----
  28.   /*
  29. !  *    PathLevel: 13
  30.    *
  31.    *    the Patch Level above is to identify the version
  32.    *    of the all the files in this directory. given the above
  33. --- 10,13 ----
  34. *** 1.5    1991/09/24 17:24:27
  35. --- curses.h    1992/06/03 15:52:06
  36. ***************
  37. *** 37,52 ****
  38.   
  39.   #include <termcap.h>
  40.   
  41. ! #if defined(__cplusplus)
  42.   extern "C" {
  43.   #endif
  44.   
  45.   # define    bool    char
  46.   # define    reg    register
  47.   
  48.   # define    TRUE    (1)
  49.   # define    FALSE    (0)
  50.   # define    ERR    (0)
  51.   # define    OK    (1)
  52.   
  53. --- 37,53 ----
  54.   
  55.   #include <termcap.h>
  56.   
  57. ! #ifdef __cplusplus
  58.   extern "C" {
  59.   #endif
  60.   
  61.   # define    bool    char
  62.   # define    reg    register
  63.   
  64. + #ifndef TRUE
  65.   # define    TRUE    (1)
  66.   # define    FALSE    (0)
  67. + #endif
  68.   # define    ERR    (0)
  69.   # define    OK    (1)
  70.   
  71. ***************
  72. *** 74,80 ****
  73.    */
  74.   
  75.   #ifdef HZ
  76. ! #  undef HZ    /* in case they included sys/param.h */
  77.   #endif
  78.   
  79.   extern bool     AM, BS, CA, DA, DB, EO, HC, HZ, IN, MI, MS, NC, NS, OS, UL,
  80. --- 75,81 ----
  81.    */
  82.   
  83.   #ifdef HZ
  84. ! #undef HZ    /* in case they included sys/param.h */
  85.   #endif
  86.   
  87.   extern bool     AM, BS, CA, DA, DB, EO, HC, HZ, IN, MI, MS, NC, NS, OS, UL,
  88. ***************
  89. *** 287,294 ****
  90.   __EXTERN char *unctrl __PROTO((int c));
  91.   #endif
  92.   
  93. ! #if defined(__cplusplus)
  94.   }
  95.   #endif
  96.   
  97. ! # endif
  98. --- 288,295 ----
  99.   __EXTERN char *unctrl __PROTO((int c));
  100.   #endif
  101.   
  102. ! #ifdef __cplusplus
  103.   }
  104.   #endif
  105.   
  106. ! #endif
  107. *** 1.2    1991/09/24 17:24:27
  108. --- termcap.h    1992/06/03 15:52:11
  109. ***************
  110. *** 5,11 ****
  111.   #  include <compiler.h>
  112.   #endif
  113.   
  114. ! #if defined(__cplusplus)
  115.   extern "C" {
  116.   #endif
  117.   
  118. --- 5,11 ----
  119.   #  include <compiler.h>
  120.   #endif
  121.   
  122. ! #ifdef __cplusplus
  123.   extern "C" {
  124.   #endif
  125.   
  126. ***************
  127. *** 27,34 ****
  128.   /* tputs.c */
  129.   __EXTERN void tputs __PROTO((char *cp, int affcnt, int (*outc)(int )));
  130.   
  131. ! #if defined(__cplusplus)
  132. ! }
  133.   #endif
  134.   
  135.   #endif /* _TERMCAP_H */
  136. --- 27,34 ----
  137.   /* tputs.c */
  138.   __EXTERN void tputs __PROTO((char *cp, int affcnt, int (*outc)(int )));
  139.   
  140. ! #ifdef __cplusplus
  141. ! extern "C" {
  142.   #endif
  143.   
  144.   #endif /* _TERMCAP_H */
  145. *** 1.8    1992/04/19 16:42:24
  146. --- xconsole.c    1992/06/03 15:52:14
  147. ***************
  148. *** 222,234 ****
  149.   int n;
  150.   {
  151.       char ch;
  152. -     short dev;
  153.   
  154. -     dev = LOOKUP(handle);
  155.       if (__check_signals)
  156. !         flush_key_buff(dev);
  157. ! /*    raw_out(dev, n); */
  158.       ch = n;
  159.       (void)Fwrite(handle, 1L, &ch);
  160.   }
  161. --- 222,230 ----
  162.   int n;
  163.   {
  164.       char ch;
  165.   
  166.       if (__check_signals)
  167. !         flush_key_buff(handle);
  168.       ch = n;
  169.       (void)Fwrite(handle, 1L, &ch);
  170.   }
  171.